Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SetConditionalFormatting Method / SetConditionalFormatting(Int32,Int32,Boolean,IConditionalFormattingRule[]) Method
Starting row index
Starting column index
Rule(s) can be merged into an existing conditional format if they affect the same cell range(s).
The specified rules to apply for a specified cell
Example


In This Topic
    SetConditionalFormatting(Int32,Int32,Boolean,IConditionalFormattingRule[]) Method
    In This Topic
    Sets conditional formatting for a specified cell on the sheet based on specified rules.
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetConditionalFormatting( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal combinable As Boolean, _
       ByVal ParamArray rules() As IConditionalFormattingRule _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim combinable As Boolean
    Dim rules() As IConditionalFormattingRule
     
    instance.SetConditionalFormatting(row, column, combinable, rules)
    public void SetConditionalFormatting( 
       int row,
       int column,
       bool combinable,
       params IConditionalFormattingRule[] rules
    )

    Parameters

    row
    Starting row index
    column
    Starting column index
    combinable
    Rule(s) can be merged into an existing conditional format if they affect the same cell range(s).
    rules
    The specified rules to apply for a specified cell
    Example
    This example uses the SetConditionalFormatting method.
    See Also